home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d7 / bfix_240.arc / FIXBINK.BAT < prev    next >
DOS Batch File  |  1990-07-21  |  389b  |  19 lines

  1. @echo off
  2. cls
  3. if "%1==" goto syntax
  4. echo on
  5. copy bt%2.exe bt%2.old
  6. if exist bt.dbg del bt.dbg
  7. ren bt%2.exe bt.dbg
  8. debug < btpatch%1.%2
  9. ren bt.dbg bt%2.exe
  10. goto end
  11. :syntax
  12. echo  
  13. echo This batch file should be called as:
  14. echo   FIXBINK n ver
  15. echo where n is the patch number, and ver is BIG for BTBIG,
  16. echo or nothing for the overlaid version of BinkleyTerm.
  17. echo  
  18. :end
  19.